<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link media="screen" rel="stylesheet" type="text/css" href=".\CSS\style.css"> <title>"title goes here </title> </title> </head> <body> <!--Code goes here --> </body> </html>
:root { --text: hsl(9, 62%, 96%); --background: hsl(4, 68%, 5%); --primary: hsl(2, 65%, 72%); --secondary: hsl(3, 66%, 14%); --accent: hsl(2, 65%, 54%); } body{ background-color: var(--background); color: var(--text); padding: 2rem; font-family: 'Times New Roman', Times, serif; } h1{ font-size: 3rem; }